EvalJavaScript
Type
handler
Summary
Evaluate JavaScript code within the browser
Syntax
EvalJavaScript(<pScript>)
Description
Use EvalJavaScript to get the result of running a block of JavaScript code
Parameters
| Name | Type | Description |
|---|---|---|
pScript | The script to evaluate |
Examples
public handler GetInputText() returns String
return EvalJavaScript("document.getElementById('myText').value")
end handler
Value
| Name | Type | Description |
|---|---|---|
return | A value of any type |